Skip to content

Add reqnroll-nunit-appium App Automate sample (Android)#1

Open
AakashHotchandani wants to merge 3 commits into
mainfrom
sdk-sample
Open

Add reqnroll-nunit-appium App Automate sample (Android)#1
AakashHotchandani wants to merge 3 commits into
mainfrom
sdk-sample

Conversation

@AakashHotchandani

Copy link
Copy Markdown
Collaborator

Import generated + live-validated BrowserStack SDK sample content, replacing the init scaffold. Single clean commit; safety-gated to contain no run artifacts or credentials.

@AakashHotchandani AakashHotchandani requested a review from a team as a code owner June 10, 2026 13:07
Comment on lines +17 to +72
runs-on: ${{ matrix.os }}
strategy:
fail-fast: false
max-parallel: 3
matrix:
os: [windows-latest]
dotnet: ['8.0.x']
name: reqnroll-nunit-appium .NET ${{ matrix.dotnet }} sample
env:
BROWSERSTACK_USERNAME: ${{ secrets.BROWSERSTACK_USERNAME }}
BROWSERSTACK_ACCESS_KEY: ${{ secrets.BROWSERSTACK_ACCESS_KEY }}
defaults:
run:
working-directory: android
steps:
- uses: actions/checkout@v4
with:
ref: ${{ github.event.inputs.commit_sha }}
- name: Mark status check in_progress
uses: actions/github-script@v7
env:
job_name: reqnroll-nunit-appium .NET ${{ matrix.dotnet }} sample
commit_sha: ${{ github.event.inputs.commit_sha }}
with:
github-token: ${{ github.token }}
script: |
await github.rest.checks.create({
owner: context.repo.owner, repo: context.repo.repo,
name: process.env.job_name, head_sha: process.env.commit_sha,
status: 'in_progress'
}).catch(e => console.log('check create failed:', e.status));
- uses: actions/setup-dotnet@v4
with:
dotnet-version: ${{ matrix.dotnet }}
- name: Restore
run: |
dotnet tool restore
dotnet restore
- name: Run sample test
run: |
dotnet test --filter "TestCategory=sample-test"
- name: Mark status check completed
if: always()
uses: actions/github-script@v7
env:
conclusion: ${{ job.status }}
job_name: reqnroll-nunit-appium .NET ${{ matrix.dotnet }} sample
commit_sha: ${{ github.event.inputs.commit_sha }}
with:
github-token: ${{ github.token }}
script: |
await github.rest.checks.create({
owner: context.repo.owner, repo: context.repo.repo,
name: process.env.job_name, head_sha: process.env.commit_sha,
status: 'completed', conclusion: process.env.conclusion
}).catch(e => console.log('check create failed:', e.status));
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Labels

None yet

Projects

None yet

Development

Successfully merging this pull request may close these issues.

2 participants